func runtime.mallocgc

28 uses

	runtime (current package)
		chan.go#L96: 		c = (*hchan)(mallocgc(hchanSize, nil, true))
		chan.go#L102: 		c = (*hchan)(mallocgc(hchanSize+mem, nil, true))
		chan.go#L107: 		c.buf = mallocgc(mem, elem, true)
		iface.go#L137: 		t2 := (*itabTableType)(mallocgc((2+2*t.size)*goarch.PtrSize, nil, true))
		iface.go#L331: 	x := mallocgc(t.size, t, true)
		iface.go#L347: 	x := mallocgc(t.size, t, false)
		iface.go#L359: 		x = mallocgc(2, uint16Type, false)
		iface.go#L372: 		x = mallocgc(4, uint32Type, false)
		iface.go#L382: 		x = mallocgc(8, uint64Type, false)
		iface.go#L392: 		x = mallocgc(unsafe.Sizeof(val), stringType, true)
		iface.go#L403: 		x = mallocgc(unsafe.Sizeof(val), sliceType, true)
		malloc.go#L909: func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {
		malloc.go#L1259: 	return mallocgc(typ.size, typ, true)
		malloc.go#L1264: 	return mallocgc(typ.size, typ, true)
		malloc.go#L1269: 	return mallocgc(typ.size, typ, true)
		malloc.go#L1275: 		return mallocgc(typ.size, typ, true)
		malloc.go#L1281: 	return mallocgc(mem, typ, true)
		mfinal.go#L204: 					frame = mallocgc(framesz, nil, true)
		slice.go#L57: 		to = mallocgc(tomem, nil, false)
		slice.go#L63: 		to = mallocgc(tomem, et, true)
		slice.go#L103: 	return mallocgc(mem, et, true)
		slice.go#L272: 		p = mallocgc(capmem, nil, false)
		slice.go#L278: 		p = mallocgc(capmem, et, true)
		string.go#L114: 		p = mallocgc(uintptr(n), nil, false)
		string.go#L273: 	p := mallocgc(uintptr(size), nil, false)
		string.go#L286: 	p := mallocgc(cap, nil, false)
		string.go#L301: 	p := mallocgc(mem, nil, false)
		string.go#L320: 	bp := mallocgc(uintptr(n), nil, false)